home *** CD-ROM | disk | FTP | other *** search
- ; Example of starting up a phone line on a single port system.
- ; This uses the port B description included in the distributed config.mb
- ;
- ; ram:mbuser.index is created by all versions of the program to keep track
- ; of which callsigns are in the user file. Previous copies of this file
- ; should be deleted before starting up the system because they might not
- ; contain the same calls as currently exist in user.dat
- if exists ram:mbuser.index
- delete ram:mbuser.index
- endif
- cd work:cbbs
- ;
- ; Start the locker process and wait until it is ready
- run locker
- waitport VE5VA-LOCK 20
- ;
- ; I don't need the -z argument when running mb because it is set with the
- ; setenv TZ_CHU command in my s:startup-sequence.
- ; Now start up mb on port B at 9600 baud
- ; And then wait for it to create the port "CBBS-B" which will indicate that
- ; it is ready to go.
- run mb -pb -b9600
- waitport CBBS-B 20
-